Search
MoveItemCommand(T) Constructor
See Also
 






Initializes a new instance of the MoveItemCommand class.

Namespace: com.mindfusion.spreadsheet
Package: com.mindfusion.spreadsheet

 Syntax

Java  Copy Code

public MoveItemCommand (
    Workbook workbook,
    UndoableCollection<T> collection,
    int fromIndex,
    int toIndex,
    T item
)

 Parameters

workbook

The Workbook modified by this command.

collection

The collection in which the item is moved.

fromIndex

The zero-based of the item.

toIndex

The zero-based index where the item should be moved.

item

The item that should be moved.

 See Also